home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / editors / postit32 / postit.bas < prev    next >
BASIC Source File  |  1995-10-26  |  1KB  |  36 lines

  1. Attribute VB_Name = "POSTIT1"
  2.  
  3.  
  4. ' THIS IS THE LOCATION OF THE MAIN NOTES AND USERS DATABASE - MODIFY IT FOR YOUR OWN USE
  5. Global Const PN_DATABASE = "\\archiveserv\archive\archive\database\numatic\postit\pnotes.mdb"
  6.  
  7. ' This is the name of your network - it is the root node of the address.
  8. Global Const PN_NETWORK = "Numatic Network"
  9.  
  10. ' This is the location of the sound files on your network
  11. Global Const PN_SOUNDFILES = "\\slave.1\clipart\sound files\"
  12.  
  13. ' This is the location of the post-send program
  14. Global Const PN_POSTSEND_PATH = "Y:\PUBLIC\APPS\POSTSEND32"
  15.  
  16.  
  17. ' This is the name of the supervisor - change it whoever is your supervisor
  18. Global Const PN_SUPERVISOR = "MAT.G"
  19.  
  20.  
  21. ' NOTE :
  22.  
  23. ' see notes for the following
  24. '    DOS Environment variables MUST be set up as follows :
  25.     
  26. '   WINNAME -   Must be set to the machine name ( i.e FRED.PC)
  27.  
  28. '   USERNAME - The User's name (Full)
  29.  
  30.  
  31.  
  32. ' wave sound player
  33. Declare Function sndPlaySound Lib "winmm" Alias "sndPlaySoundA" (ByVal lpszSoundName As String, ByVal uFlags As Long) As Long
  34.  
  35.  
  36.